From db4c7476536c0eeb43ce13692c2885e2d896492d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Fri, 5 Mar 2021 13:06:21 +0100 Subject: [PATCH] builtmaster,phase1: add missing services dict MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes following error: 2021-03-05 11:00:54+0000 [-] error while parsing config file: ... builtins.KeyError: 'services' Signed-off-by: Petr Å tetiar --- phase1/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phase1/master.cfg b/phase1/master.cfg index e01a1a5..5773257 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -1347,7 +1347,7 @@ if ini.has_option("phase1", "status_bind"): roleMatchers=[ util.RolesFromUsername(roles=["admins"], usernames=[ini.get("phase1", "status_user")]) ] ) - +c['services'] = [] if ini.has_option("irc", "host") and ini.has_option("irc", "nickname") and ini.has_option("irc", "channel"): irc_host = ini.get("irc", "host") irc_port = 6667 -- 2.30.2